home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000028_news@columbia.edu_Tue Dec 5 20:42:01 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18331
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun>); Tue, 5 Dec 1995 15:42:40 -0500
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.6.12/8.6.12) id PAA24458 for kermit.misc@watsun; Tue, 5 Dec 1995 15:42:06 -0500
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Write-file produces continuous record
  8. Date: 5 Dec 1995 20:42:01 GMT
  9. Organization: Columbia University
  10. Lines: 18
  11. Message-Id: <4a2aqp$ns6@apakabar.cc.columbia.edu>
  12. References: <Pine.ULT.3.91.951204131848.1986A-100000@chinook.halcyon.com>
  13. Nntp-Posting-Host: watsun.cc.columbia.edu
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <Pine.ULT.3.91.951204131848.1986A-100000@chinook.halcyon.com>,
  17. KeithM  <kmhouse@halcyon.com> wrote:
  18. : I'm using MS-DOS Kermit, version 3.14 on an IBM PC/AT 486/dx66 clone.
  19. : I've written a batch file that executes a kermit script that writes several
  20. : messages to a DOS file. These vary depending on what happens within the 
  21. : script. After the kermit script is finished and control is returned to 
  22. : the batch file, the DOS file is then written to screen.  The kermit verbs
  23. : I'm using are OPEN WRITE filename, WRITE FILE some message, WRITE FILE 
  24. : another message, CLOSE WRITE-FILE.  
  25. : When the file is displayed on the screen, all the lines are run together.  
  26. : Does anyone know how to write to a DOS file so that each WRITE FILE 
  27. : produces a separate line?
  28. Include \13\10 at the end of the string, as explained in "Using MS-DOS
  29. Kermit", page 169.
  30.  
  31. - Frank